home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 10093 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  551 b 

  1. Path: airdmhor.gen.nz!not-for-mail
  2. From: gumboot@airdmhor.gen.nz (Simon Hosie)
  3. Newsgroups: comp.lang.c
  4. Subject: compilers
  5. Date: 16 Mar 1996 03:29:10 +1300
  6. Organization: Airdmhor : a couple of BBS's, a bunch of people, and a cat.
  7. Message-ID: <4iburm$aps@airdmhor.gen.nz>
  8. NNTP-Posting-Host: airdmhor.gen.nz
  9. X-Newsreader: TIN [version 1.2 PL2]
  10.  
  11.   Does anyone know of a compiler that can take
  12.  
  13. for (;;)
  14. {
  15.     Stuff(1);
  16.     if (Cond)
  17.         break;
  18.     Stuff(2);
  19. }
  20.  
  21.   and make
  22.  
  23. goto EntryPoint;
  24. do
  25. {
  26.     Stuff(2);
  27. EntryPoint:
  28.     Stuff(1);
  29. } while (Cond);
  30.